﻿#HistoriePozicSplitter {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

#HistoriePozicToolbar {
    position: absolute;
    left: 4px;
    top: 4px;
    right: 0px;
    height: 28px;
    padding: 0px;
}

#DivHistoriePozic {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

#HistoriePozicGrid {
    position: absolute;
    left: 0px;
    top: 42px;
    right: 0px;
    bottom: 0px;
}

#HistoriePozicKontejnerProMapu {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

#HistoriePozicMapa {
    width: 100%;
    height: 100%;
}

#HistoriePozicIndikatorBezicihoVypoctu {
    z-index: 9999;
    position: absolute;
    left: 4px;
    top: 4px;
    width: 3rem;
    height: 3rem;
    border: 5px solid #f3f3f3;
    border-top: 6px solid rgb(55,115,174);
    border-radius: 100%;
    margin: auto;
    visibility: hidden;
    animation: spin 1s infinite linear;
}

    #HistoriePozicIndikatorBezicihoVypoctu.display {
        visibility: visible;
    }

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
